*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
    overflow-y: hidden;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(to right,#4fb8ea,#99d0f4);
    
}
.input-box{
    width: 100%;
}
select.ss {
    padding-left: 8px;
    border-radius: 5px;
    height: 40px;
    width: 95%;
}

@media (min-width:320px) and (max-width:765px)  {
    select.ss {
        width: 95%;
    }
    .input-box {
        width: 100%;
        /* padding: bottom 15px ; */
    }
    .input-box input {
        height: 40px;
        width: 95%;
        padding: 0 10px;
        border-radius: 5px;
        border-color: 1px #ccc;
        outline: none;
    }
    
}
.container{
    max-width: 650px;
    margin: 0 30px;
    padding: 20px;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
    box-shadow:0 15px 20px rgba(0,0,0,0.6);
}
h2{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    padding-bottom: 1px ;
    border-bottom: 1px silver;
}

.content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0 ;
}
.input-box{
    display: inline;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 4px ;
}
.input-box::nth-child(2n){
    justify-content: end;
}
.input-box label{
    width: 95%;
    color: white;
    font-weight: bold;
    margin: 5px ;
}
.input-box input{
    height: 40px;
    width: 95%;
    padding: 0 10px;
    border-radius: 5px;
    border-color: 1px #ccc;
    outline: none;
}
.input-box input:is(:focus,:valid){
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}